home *** CD-ROM | disk | FTP | other *** search
/ 3D Game Programming All in One / 3D Game Programming All in One Disc.iso / 3D2E / RESOURCES / KOOB / common / ui / HelpDlg.gui < prev    next >
Text File  |  2005-11-23  |  3KB  |  95 lines

  1. //--- OBJECT WRITE BEGIN ---
  2. new GuiControl(HelpDlg) {
  3.    profile = "GuiDefaultProfile";
  4.    horizSizing = "right";
  5.    vertSizing = "bottom";
  6.    position = "0 0";
  7.    extent = "640 480";
  8.    minExtent = "8 8";
  9.    visible = "1";
  10.    helpTag = "0";
  11.  
  12.    new GuiWindowCtrl() {
  13.       profile = "GuiWindowProfile";
  14.       horizSizing = "center";
  15.       vertSizing = "center";
  16.       position = "75 36";
  17.       extent = "483 393";
  18.       minExtent = "300 200";
  19.       visible = "1";
  20.       helpTag = "0";
  21.       text = "Help";
  22.       maxLength = "255";
  23.       resizeWidth = "1";
  24.       resizeHeight = "1";
  25.       canMove = "1";
  26.       canClose = "1";
  27.       canMinimize = "1";
  28.       canMaximize = "1";
  29.       minSize = "50 50";
  30.       closeCommand = "Canvas.popDialog(HelpDlg);";
  31.  
  32.       new GuiScrollCtrl() {
  33.          profile = "GuiScrollProfile";
  34.          horizSizing = "right";
  35.          vertSizing = "height";
  36.          position = "8 26";
  37.          extent = "132 356";
  38.          minExtent = "8 8";
  39.          visible = "1";
  40.          helpTag = "0";
  41.          willFirstRespond = "1";
  42.          hScrollBar = "alwaysOff";
  43.          vScrollBar = "dynamic";
  44.          constantThumbHeight = "0";
  45.          childMargin = "0 0";
  46.  
  47.          new GuiTextListCtrl(HelpFileList) {
  48.             profile = "GuiTextListProfile";
  49.             horizSizing = "right";
  50.             vertSizing = "bottom";
  51.             position = "1 1";
  52.             extent = "130 8";
  53.             minExtent = "8 8";
  54.             visible = "1";
  55.             helpTag = "0";
  56.             enumerate = "0";
  57.             resizeCell = "1";
  58.             columns = "0";
  59.             fitParentWidth = "1";
  60.             clipColumnText = "0";
  61.          };
  62.       };
  63.       new GuiScrollCtrl() {
  64.          profile = "GuiScrollProfile";
  65.          horizSizing = "width";
  66.          vertSizing = "height";
  67.          position = "146 26";
  68.          extent = "328 356";
  69.          minExtent = "8 8";
  70.          visible = "1";
  71.          helpTag = "0";
  72.          willFirstRespond = "1";
  73.          hScrollBar = "alwaysOff";
  74.          vScrollBar = "alwaysOn";
  75.          constantThumbHeight = "0";
  76.          childMargin = "0 0";
  77.  
  78.          new GuiMLTextCtrl(HelpText) {
  79.             profile = "GuiMLTextProfile";
  80.             horizSizing = "width";
  81.             vertSizing = "bottom";
  82.             position = "1 1";
  83.             extent = "310 16";
  84.             minExtent = "8 8";
  85.             visible = "1";
  86.             helpTag = "0";
  87.             lineSpacing = "2";
  88.             allowColorChars = "0";
  89.             maxChars = "-1";
  90.          };
  91.       };
  92.    };
  93. };
  94. //--- OBJECT WRITE END ---
  95.